home *** CD-ROM | disk | FTP | other *** search
-
- Tables
-
- <TABLE [BORDER=n] [CELLSPACING=n] [CELLPADDING=n]
- [WIDTH=n|n%]>
- Start tag of a table. Must end with the </TABLE> tag.
- The following parameters are allowed:
-
- BORDER=n
- Gives the table a 3D-look. n is the width of the border
- in dots.
-
- CELLSPACING=n
- Sets the space between cells in dots.
-
- CELLPADDING=n
- Sets the space between the contains of the cells to the
- cells border.
-
- WIDTH=n|n%
- Sets the width of the table in dots or in percent of the
- page.
-
- BGCOLOR=rrggbb|color
- Defines the background color of the table. Read the
- 'Text styles'chapter for more. Internet Explorer tag.
-
- BORDERCOLOR=rrggbb|color
- Defines the border color of the table. Read the
- 'Text styles'chapter for more. Internet Explorer tag.
-
- BORDERCOLORLIGHT=rrggbb|color
- Defines the light shadow color of the table. Read the
- 'Text styles'chapter for more. Internet Explorer tag.
-
- BORDERCOLORDARK=rrggbb|color
- Defines the dark shadow color of the table. Read the
- 'Text styles'chapter for more. Internet Explorer tag.
-
- Table tags
-
- <CAPTION [ALIGN=TOP|BOTTOM]>text</CAPTION>
- "text" will be the tables header. Use this tag inside the
- <TABLE> tag, but not within lines. You can show the
- header over or under the TABLE by setting ALIGN to TOP
- resp. BOTTOM.
-
- <TR [ALIGN=LEFT|CENTER|RIGHT] [VALIGN=TOP|MIDDLE|BOTTOM|
- BASELINE]>
- Start a new line in the table. ALIGN sets the horizontal
- adjusments for the lines text and VALIGN the vertical
- adjustment. Must end with </TR>
-
- <TD|TH [ALIGN=LEFT|CENTER|RIGHT] [VALIGN=TOP|MIDDLE|BOTTOM
- |BASELINE] [NOWRAP] [COLSPAN=N] [ROWSPAN=N] [WIDTH=N]>
- TD and TH insert a new cell. TH stands for 'table header'
- and shows up the contents of the cell in bold. ALIGN
- sets the adjustments of the text. NOWRAP prevents the
- browser from wrapping the cell contents. COLSPAN can be
- used to let the cell go over more than one column. Normal
- is 1. ROWSPAN is the same thing, but let the cell go over
- more than one line. Normal settings is 1. WIDTH sets the
- width of the cell. Must end with </TD>
-